nodejs.git
4 weeks agoMerge nodejs (20.19.2+dfsg-1+deb13u1) import into refs/heads/workingbranch
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
Merge nodejs (20.19.2+dfsg-1+deb13u1) import into refs/heads/workingbranch

4 weeks ago[PATCH] deps: V8: backport 6a0a25abaed3
Vivian Wang [Tue, 3 Feb 2026 08:46:02 +0000 (16:46 +0800)]
[PATCH] deps: V8: backport 6a0a25abaed3

Original commit message:

    [riscv] Fix sp handling in MacroAssembler::LeaveFrame

    Keep sp <= fp to ensure that data right above fp doesn't get clobbered
    by an inopportune signal and its handler.

    Such clobbering can happen in e.g. Node.js when JIT-compiled code is
    interrupted by a SIGCHLD handler.

    Bug: None
    Change-Id: Ief0836032ada7942e89f081f7605f61632c4d414
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/7540554
Reviewed-by: Ji Qiu <qiuji@iscas.ac.cn>
    Commit-Queue: Yahan Lu (LuYahan) <yahan@iscas.ac.cn>
Reviewed-by: Rezvan Mahdavi Hezaveh <rezvan@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#105069}

Refs: https://github.com/v8/v8/commit/6a0a25abaed397f83eb0d92e4b33a5e18204f8bc
Co-authored-by: kxxt <rsworktech@outlook.com>
PR-URL: https://github.com/nodejs/node/pull/61687
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 44-v8-riscv-fix-sp-handling-in-macroassembler-leave-frame.patch

4 weeks ago[PATCH] src,lib: refactor unsafe buffer creation to remove zero-fill toggle
Сковорода Никита Андреевич [Fri, 7 Nov 2025 14:50:57 +0000 (11:50 -0300)]
[PATCH] src,lib: refactor unsafe buffer creation to remove zero-fill toggle

This removes the zero-fill toggle mechanism that allowed JavaScript
to control ArrayBuffer initialization via shared memory. Instead,
unsafe buffer creation now uses a dedicated C++ API.

Refs: https://hackerone.com/reports/3405778
Co-Authored-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Co-Authored-By: Joyee Cheung <joyeec9h3@gmail.com>
Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com>
PR-URL: https://github.com/nodejs-private/node-private/pull/759
Backport-PR-URL: https://github.com/nodejs-private/node-private/pull/799
CVE-ID: CVE-2025-55131

Gbp-Pq: Topic sec
Gbp-Pq: Name 38-refactor-unsafe-buffer-creation-to-remove-zero-fill-toggle.patch

4 weeks ago[PATCH] src: rethrow stack overflow exceptions in async_hooks
Matteo Collina [Tue, 9 Dec 2025 22:50:18 +0000 (23:50 +0100)]
[PATCH] src: rethrow stack overflow exceptions in async_hooks

When a stack overflow exception occurs during async_hooks callbacks
(which use TryCatchScope::kFatal), detect the specific "Maximum call
stack size exceeded" RangeError and re-throw it instead of immediately
calling FatalException. This allows user code to catch the exception
with try-catch blocks instead of requiring uncaughtException handlers.

The implementation adds IsStackOverflowError() helper to detect stack
overflow RangeErrors and re-throws them in TryCatchScope destructor
instead of calling FatalException.

This fixes the issue where async_hooks would cause stack overflow
exceptions to exit with code 7 (kExceptionInFatalExceptionHandler)
instead of being catchable.

Fixes: https://github.com/nodejs/node/issues/37989
Ref: https://hackerone.com/reports/3456295
PR-URL: https://github.com/nodejs-private/node-private/pull/773
Refs: https://hackerone.com/reports/3456295
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
CVE-ID: CVE-2025-59466

Gbp-Pq: Topic sec
Gbp-Pq: Name 37-rethrow-stack-overflow-exceptions-in-async-hooks.patch

4 weeks ago[PATCH] lib,permission: require full read and write to symlink APIs
RafaelGSS [Mon, 10 Nov 2025 22:27:51 +0000 (19:27 -0300)]
[PATCH] lib,permission: require full read and write to symlink APIs

Refs: https://hackerone.com/reports/3417819
PR-URL: https://github.com/nodejs-private/node-private/pull/760
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
CVE-ID: CVE-2025-55130
Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 36-lib-permission-require-full-read-and-write-to-symlink-apis.patch

4 weeks ago[PATCH] lib: disable futimes when permission model is enabled
RafaelGSS [Tue, 21 Oct 2025 21:25:31 +0000 (18:25 -0300)]
[PATCH] lib: disable futimes when permission model is enabled

Refs: https://hackerone.com/reports/3390084
PR-URL: https://github.com/nodejs-private/node-private/pull/748
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
CVE-ID: CVE-2025-55132
PR-URL: https://github.com/nodejs-private/node-private/pull/802
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
CVE-ID: CVE-2025-55132

Gbp-Pq: Topic sec
Gbp-Pq: Name 35-lib-disable-futimes-when-permission-model-is-enabled.patch

4 weeks ago[PATCH] lib: add TLSSocket default error handler
RafaelGSS [Fri, 31 Oct 2025 19:27:48 +0000 (16:27 -0300)]
[PATCH] lib: add TLSSocket default error handler

This prevents the server from crashing due to an unhandled rejection
when a TLSSocket connection is abruptly destroyed during initialization
and the user has not attached an error handler to the socket.
e.g:

```js
const server = http2.createSecureServer({ ... })
server.on('secureConnection', socket => {
  socket.on('error', err => {
    console.log(err)
  })
})
```

PR-URL: https://github.com/nodejs-private/node-private/pull/797
Fixes: https://github.com/nodejs/node/issues/44751
Refs: https://hackerone.com/bugs?subject=nodejs&report_id=3262404
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
CVE-ID: CVE-2025-59465

Gbp-Pq: Topic sec
Gbp-Pq: Name 34-lib-add-tlssocket-default-error-handler.patch

4 weeks ago[PATCH] tls: route callback exceptions through error handlers
Matteo Collina [Mon, 22 Dec 2025 17:25:33 +0000 (18:25 +0100)]
[PATCH] tls: route callback exceptions through error handlers

Wrap pskCallback and ALPNCallback invocations in try-catch blocks
to route exceptions through owner.destroy() instead of letting them
become uncaught exceptions. This prevents remote attackers from
crashing TLS servers or causing resource exhaustion.

Fixes: https://hackerone.com/reports/3473882
PR-URL: https://github.com/nodejs-private/node-private/pull/782
PR-URL: https://github.com/nodejs-private/node-private/pull/796
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
CVE-ID: CVE-2026-21637

Gbp-Pq: Topic sec
Gbp-Pq: Name 33-tls-route-callback-exceptions-through-error-handlers.patch

4 weeks ago[PATCH] src: fix order of CHECK_NOT_NULL/dereference
Tobias Nießen [Mon, 18 Aug 2025 12:17:47 +0000 (14:17 +0200)]
[PATCH] src: fix order of CHECK_NOT_NULL/dereference

`ASYNC_THROW_IF_INSUFFICIENT_PERMISSIONS` may dereference
`req_wrap_async`, so `CHECK_NOT_NULL(req_wrap_async)` should be used
before and not after.

PR-URL: https://github.com/nodejs/node/pull/59487
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 29-fix-order-of-check-not-null.patch

4 weeks ago[PATCH] http2: do not crash on mismatched ping buffer length
René [Wed, 8 Oct 2025 23:23:34 +0000 (00:23 +0100)]
[PATCH] http2: do not crash on mismatched ping buffer length

PR-URL: https://github.com/nodejs/node/pull/60135
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 28-http2-do-not-crash-on-mismatched-ping-buffer-length.patch

4 weeks ago[PATCH] deps: V8: cherry-pick 6b1b9bca2a8
zhoumingtao [Wed, 30 Jul 2025 04:02:51 +0000 (12:02 +0800)]
[PATCH] deps: V8: cherry-pick 6b1b9bca2a8

Origin commit message:

    [loong64][codegen] Avoid memory access under stack pointer

    According to LoongArch ABI doc chapter 8.2:
      "Procedures must not assume the persistence on-stack data of which
       the addresses lie below the stack pointer."

    Change-Id: I92735e052227495ac9884c4290b57eaffbf905e1
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6786372
    Auto-Submit: Zhao Jiazhong <zhaojiazhong-hf@loongson.cn>
Reviewed-by: Matthias Liedtke <mliedtke@chromium.org>
    Commit-Queue: Matthias Liedtke <mliedtke@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#101634}

Backport-PR-URL: https://github.com/nodejs/node/pull/59662
Refs: https://github.com/v8/v8/commit/6b1b9bca2a8fe9824bcc815a9ce642da904b91c3
PR-URL: https://github.com/nodejs/node/pull/59283
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 27-v8-loong64-avoid-memory-access-under-stack-pointer.patch

4 weeks ago[PATCH] v8: fix missing callback in heap utils destroy
Ruben Bridgewater [Mon, 30 Jun 2025 11:51:40 +0000 (13:51 +0200)]
[PATCH] v8: fix missing callback in heap utils destroy

This fixes the v8.getHeapSnapshot() calls not properly being
destroyed. Pipeline calls would for example not properly end
without the callback being in place.

PR-URL: https://github.com/nodejs/node/pull/58846
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 19-v8-fix-missing-callback-in-heap-utils-destroy.patch

4 weeks ago[PATCH] src: fix possible dereference of null pointer
Eusgor [Thu, 29 May 2025 20:01:48 +0000 (02:01 +0600)]
[PATCH] src: fix possible dereference of null pointer

There is a CHECK_NOT_NULL check before dereferencing node_env on
line 710 in the "if" block, but there is no CHECK_NOT_NULL check before
dereferencing node_env on line 721. Maybe it makes sense to put
CHECK_NOT_NULL right after calling the Environment::GetCurrent function.

PR-URL: https://github.com/nodejs/node/pull/58459
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 17-fix-possible-dereference-of-null-pointer.patch

4 weeks ago[PATCH] os: fix GetInterfaceAddresses memory lieaky
theanarkh [Sat, 5 Jul 2025 17:33:23 +0000 (01:33 +0800)]
[PATCH] os: fix GetInterfaceAddresses memory lieaky

PR-URL: https://github.com/nodejs/node/pull/58940
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 15-fix-os-getinterface-addresses-leak.patch

4 weeks ago[PATCH] http2: fix check for `frame->hd.type`
hanguanqiang [Wed, 9 Apr 2025 11:48:11 +0000 (19:48 +0800)]
[PATCH] http2: fix check for `frame->hd.type`

Related to CVE-2025-23085
According to the comment, this should be checking whether
`frame->hd.type` is `NGHTTP2_GOAWAY`, i.e. `0x07` and not `0x03`.

PR-URL: https://github.com/nodejs/node/pull/57644
Refs: https://github.com/nodejs/node/commit/1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Gbp-Pq: Topic sec
Gbp-Pq: Name 12-http2-fix-check-for-frame-type-goaway.patch

4 weeks ago[PATCH] zlib: fix pointer alignment
jhofstee [Wed, 9 Apr 2025 10:24:13 +0000 (12:24 +0200)]
[PATCH] zlib: fix pointer alignment

The function AllocForBrotli prefixes the allocated memory with its
size, and returns a pointer to the region after it. This pointer can
however no longer be suitably aligned. Correct this by allocating
the maximum of the the size of the size_t and the max alignment.

On Arm 32bits the size_t is 4 bytes long, but the alignment is 8 for
some NEON instructions. When Brotli is compiled with optimizations
enabled newer GCC versions will use the NEON instructions and trigger
a bus error killing node.

see https://github.com/google/brotli/issues/1159

PR-URL: https://github.com/nodejs/node/pull/57727
Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Daniel Lemire <daniel@lemire.me>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Gbp-Pq: Topic sec
Gbp-Pq: Name 10-zlib-fix-pointer-alignment.patch

4 weeks agoskip useless files in build target
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
skip useless files in build target

Forwarded: https://github.com/nodejs/node/issues/55787

Gbp-Pq: Topic build
Gbp-Pq: Name no-deps.patch

4 weeks agocompile v8 without zlib static lib
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
compile v8 without zlib static lib

Last-Update: 2023-12-16
Forwarded: https://github.com/nodejs/node/issues/33848

it should have a minor performance impact

Gbp-Pq: Topic deps
Gbp-Pq: Name v8-no-static-zlib.patch

4 weeks agobuild using ada upstream tarball component
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
build using ada upstream tarball component

Last-Update: 2023-11-30
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name ada.patch

4 weeks agoHarmonize V8 stack sizes on ARM architectures to match almost all other architectures
James Addison [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
Harmonize V8 stack sizes on ARM architectures to match almost all other architectures

Last-Update: 2023-02-28
Forwarded: https://github.com/nodejs/node/issues/41163

Gbp-Pq: Topic arm64
Gbp-Pq: Name stacksize.patch

4 weeks agoUse system paths for builtins
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
Use system paths for builtins

Last-Update: 2023-02-22
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name test_process_versions.patch

4 weeks agofix link to home in html api
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
fix link to home in html api

Forwarded: not needed, in conflict with the meaning of home page
Last-Update: 2022-11-06

Gbp-Pq: Topic build
Gbp-Pq: Name doc_template_home.html

4 weeks agoallow vfp2 and allow setting arm_version option
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
allow vfp2 and allow setting arm_version option

Last-Update: 2022-08-29
Forwarded: https://github.com/nodejs/node/issues/44357

Gbp-Pq: Topic armel
Gbp-Pq: Name configure.patch

4 weeks agoskip buffer NaN internal representation check this fails on whatever archs having...
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
skip buffer NaN internal representation check this fails on whatever archs having other internal representations of NaN.

Last-Update: 2022-05-02
Forwarded: https://github.com/nodejs/node/issues/42945

Gbp-Pq: Topic build
Gbp-Pq: Name skip-buffer-nan-internal-check.patch

4 weeks agoremove google font from template.html, and link to local
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
remove google font from template.html, and link to local

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic dfsg
Gbp-Pq: Name privacy_breach.patch

4 weeks agoMultiarch search path, arch triplet, DFHS path for modules
Bastien ROUCARIÈS [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
Multiarch search path, arch triplet, DFHS path for modules

Last-Update: 2018-09-30
Last-Update: 2020-03-04
Forwarded: https://github.com/nodejs/node/issues/22745
Reviewed-By: Xavier Guimard <yadd@debian.org>
Gbp-Pq: Topic dfsg
Gbp-Pq: Name multilib_modules.patch

4 weeks agoa test uses a benchmark that read alice.html, dfsg excluded
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
a test uses a benchmark that read alice.html, dfsg excluded

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2020-03-04

Gbp-Pq: Topic dfsg
Gbp-Pq: Name benchmark_without_alice.patch

4 weeks agouse system-installed node-gyp for building test modules
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
use system-installed node-gyp for building test modules

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic deps
Gbp-Pq: Name node_gyp.patch

4 weeks agodo not use dns.ADDRCONFIG for localhost
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
do not use dns.ADDRCONFIG for localhost

Last-Update: 2020-06-11
Bug-Debian: https://bugs.debian.org/962318
Forwarded: https://github.com/nodejs/node/issues/33816

it fails on IPv6-only systems. Setting it with libc fails on linux.
https://github.com/nodejs/node/issues/33279
https://lists.debian.org/debian-devel/2023/12/msg00011.html

Gbp-Pq: Topic deps
Gbp-Pq: Name localhost-no-addrconfig.patch

4 weeks agokeep nodejs compatible with libc-ares public headers
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
keep nodejs compatible with libc-ares public headers

Forwarded: not-needed
Last-Update: 2021-10-20

Gbp-Pq: Topic deps
Gbp-Pq: Name cares.patch

4 weeks agoadapt tools/test.py
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
adapt tools/test.py

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2025-02-12

* log to stdout
* increase timeout multipliers
* rename --flaky-tests to --flaky-tests-mode and use --flaky-tests like --skip-tests

Gbp-Pq: Topic build
Gbp-Pq: Name test_ci.patch

4 weeks agoLink to -latomic by default
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
Link to -latomic by default

Last-Update: 2019-10-25
Forwarded: not-needed
Bug: https://github.com/nodejs/node/pull/28532
Bug: https://github.com/nodejs/node/issues/30093

This avoids surprises on mips*el/ppc*el

Gbp-Pq: Topic build
Gbp-Pq: Name flag_atomic.patch

4 weeks agobuild doc using marked and js-yaml
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
build doc using marked and js-yaml

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2021-03-03

While waiting for unified/remarked/rehyped modules to be available in debian

Gbp-Pq: Topic build
Gbp-Pq: Name doc.patch

4 weeks agodisable shared builtins when loading deps on demand
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
disable shared builtins when loading deps on demand

Last-Update: 2023-12-10
Forwarded: no, todo

This is to avoid preloading potentially missing files.

Gbp-Pq: Topic build
Gbp-Pq: Name builtins_module_paths_not_shareable.patch

4 weeks agoadd acorn, walk to shared builtins
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
add acorn, walk to shared builtins

Last-Update: 2022-09-28
Forwarded: https://github.com/nodejs/node/pull/44376

Gbp-Pq: Topic build
Gbp-Pq: Name more_shareable_builtins.patch

4 weeks agonodejs (20.19.2+dfsg-1+deb13u1) trixie-security; urgency=medium
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
nodejs (20.19.2+dfsg-1+deb13u1) trixie-security; urgency=medium

  * Upstream security patches:
    + CVE-2025-23085: follow-up fix wrong check for NGHTTP2_GOAWAY
    + CVE-2026-21637: TLS error handling allows remote attackers to
      crash or exhaust resources of a TLS server when `pskCallback`
      or `ALPNCallback` are in use.
    + CVE-2025-59465: malformed `HTTP/2 HEADERS` frame with oversized
      invalid `HPACK` data can cause a crash.
    + CVE-2025-55132: permission model allows a file's access and
      modification timestamps to be changed via `futimes()` even when
      the process has only read permissions.
    + CVE-2025-55130: permissions model allows attackers to bypass
      `--allow-fs-read` and `--allow-fs-write` restrictions using
      crafted relative symlink paths.
    + CVE-2025-59466: "Maximum call stack size exceeded" errors become
      uncatchable when `async_hooks.createHook()` is enabled.
    + CVE-2025-55131: buffer allocation logic can expose uninitialized
      memory when allocations are interrupted, when using the `vm` module
      with the timeout option.
  * Upstream critical fixes (see sec/NN patches)
    + zlib: fix pointer alignment (10)
    + os: fix GetInterfaceAddresses memory leak (15)
    + src: fix possible dereference of null pointers (17, 29)
    + v8: fix missing callback in heap utils destroy (19)
    + v8: loong64 - avoid memory access under stack pointer (27)
    + http2: do not crash on mismatched ping buffer length (28)
    + v8: riscv64 - Fix sp handling in MacroAssembler::LeaveFrame (44)

[dgit import unpatched nodejs 20.19.2+dfsg-1+deb13u1]

4 weeks agoImport nodejs_20.19.2+dfsg-1+deb13u1.debian.tar.xz
Jérémy Lal [Thu, 5 Mar 2026 10:05:11 +0000 (11:05 +0100)]
Import nodejs_20.19.2+dfsg-1+deb13u1.debian.tar.xz

[dgit import tarball nodejs 20.19.2+dfsg-1+deb13u1 nodejs_20.19.2+dfsg-1+deb13u1.debian.tar.xz]

10 months agoMerge nodejs (20.19.2+dfsg-1) import into refs/heads/workingbranch
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Merge nodejs (20.19.2+dfsg-1) import into refs/heads/workingbranch

10 months agoImport nodejs_20.19.2+dfsg.orig.tar.xz
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Import nodejs_20.19.2+dfsg.orig.tar.xz

[dgit import orig nodejs_20.19.2+dfsg.orig.tar.xz]

10 months agoImport nodejs_20.19.2+dfsg.orig-ada.tar.xz
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Import nodejs_20.19.2+dfsg.orig-ada.tar.xz

[dgit import orig nodejs_20.19.2+dfsg.orig-ada.tar.xz]

10 months agoImport nodejs_20.19.2+dfsg.orig-types-node.tar.xz
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Import nodejs_20.19.2+dfsg.orig-types-node.tar.xz

[dgit import orig nodejs_20.19.2+dfsg.orig-types-node.tar.xz]

10 months agoskip useless files in build target
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
skip useless files in build target

Forwarded: https://github.com/nodejs/node/issues/55787

Gbp-Pq: Topic build
Gbp-Pq: Name no-deps.patch

10 months agocompile v8 without zlib static lib
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
compile v8 without zlib static lib

Last-Update: 2023-12-16
Forwarded: https://github.com/nodejs/node/issues/33848

it should have a minor performance impact

Gbp-Pq: Topic deps
Gbp-Pq: Name v8-no-static-zlib.patch

10 months agobuild using ada upstream tarball component
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
build using ada upstream tarball component

Last-Update: 2023-11-30
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name ada.patch

10 months agoHarmonize V8 stack sizes on ARM architectures to match almost all other architectures
James Addison [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Harmonize V8 stack sizes on ARM architectures to match almost all other architectures

Last-Update: 2023-02-28
Forwarded: https://github.com/nodejs/node/issues/41163

Gbp-Pq: Topic arm64
Gbp-Pq: Name stacksize.patch

10 months agoUse system paths for builtins
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Use system paths for builtins

Last-Update: 2023-02-22
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name test_process_versions.patch

10 months agofix link to home in html api
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
fix link to home in html api

Forwarded: not needed, in conflict with the meaning of home page
Last-Update: 2022-11-06

Gbp-Pq: Topic build
Gbp-Pq: Name doc_template_home.html

10 months agoallow vfp2 and allow setting arm_version option
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
allow vfp2 and allow setting arm_version option

Last-Update: 2022-08-29
Forwarded: https://github.com/nodejs/node/issues/44357

Gbp-Pq: Topic armel
Gbp-Pq: Name configure.patch

10 months agoskip buffer NaN internal representation check this fails on whatever archs having...
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
skip buffer NaN internal representation check this fails on whatever archs having other internal representations of NaN.

Last-Update: 2022-05-02
Forwarded: https://github.com/nodejs/node/issues/42945

Gbp-Pq: Topic build
Gbp-Pq: Name skip-buffer-nan-internal-check.patch

10 months agoremove google font from template.html, and link to local
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
remove google font from template.html, and link to local

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic dfsg
Gbp-Pq: Name privacy_breach.patch

10 months agoMultiarch search path, arch triplet, DFHS path for modules
Bastien ROUCARIÈS [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Multiarch search path, arch triplet, DFHS path for modules

Last-Update: 2018-09-30
Last-Update: 2020-03-04
Forwarded: https://github.com/nodejs/node/issues/22745
Reviewed-By: Xavier Guimard <yadd@debian.org>
Gbp-Pq: Topic dfsg
Gbp-Pq: Name multilib_modules.patch

10 months agoa test uses a benchmark that read alice.html, dfsg excluded
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
a test uses a benchmark that read alice.html, dfsg excluded

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2020-03-04

Gbp-Pq: Topic dfsg
Gbp-Pq: Name benchmark_without_alice.patch

10 months agouse system-installed node-gyp for building test modules
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
use system-installed node-gyp for building test modules

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic deps
Gbp-Pq: Name node_gyp.patch

10 months agodo not use dns.ADDRCONFIG for localhost
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
do not use dns.ADDRCONFIG for localhost

Last-Update: 2020-06-11
Bug-Debian: https://bugs.debian.org/962318
Forwarded: https://github.com/nodejs/node/issues/33816

it fails on IPv6-only systems. Setting it with libc fails on linux.
https://github.com/nodejs/node/issues/33279
https://lists.debian.org/debian-devel/2023/12/msg00011.html

Gbp-Pq: Topic deps
Gbp-Pq: Name localhost-no-addrconfig.patch

10 months agokeep nodejs compatible with libc-ares public headers
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
keep nodejs compatible with libc-ares public headers

Forwarded: not-needed
Last-Update: 2021-10-20

Gbp-Pq: Topic deps
Gbp-Pq: Name cares.patch

10 months agoadapt tools/test.py
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
adapt tools/test.py

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2025-02-12

* log to stdout
* increase timeout multipliers
* rename --flaky-tests to --flaky-tests-mode and use --flaky-tests like --skip-tests

Gbp-Pq: Topic build
Gbp-Pq: Name test_ci.patch

10 months agoLink to -latomic by default
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Link to -latomic by default

Last-Update: 2019-10-25
Forwarded: not-needed
Bug: https://github.com/nodejs/node/pull/28532
Bug: https://github.com/nodejs/node/issues/30093

This avoids surprises on mips*el/ppc*el

Gbp-Pq: Topic build
Gbp-Pq: Name flag_atomic.patch

10 months agobuild doc using marked and js-yaml
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
build doc using marked and js-yaml

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2021-03-03

While waiting for unified/remarked/rehyped modules to be available in debian

Gbp-Pq: Topic build
Gbp-Pq: Name doc.patch

10 months agodisable shared builtins when loading deps on demand
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
disable shared builtins when loading deps on demand

Last-Update: 2023-12-10
Forwarded: no, todo

This is to avoid preloading potentially missing files.

Gbp-Pq: Topic build
Gbp-Pq: Name builtins_module_paths_not_shareable.patch

10 months agoadd acorn, walk to shared builtins
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
add acorn, walk to shared builtins

Last-Update: 2022-09-28
Forwarded: https://github.com/nodejs/node/pull/44376

Gbp-Pq: Topic build
Gbp-Pq: Name more_shareable_builtins.patch

10 months agonodejs (20.19.2+dfsg-1) unstable; urgency=medium
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
nodejs (20.19.2+dfsg-1) unstable; urgency=medium

  * New upstream version 20.19.2+dfsg
    Security fixes: (Closes: #1105832)
    + CVE-2025-23165: add missing call to uv_fs_req_cleanup (low)
    + CVE-2025-23166: fix error handling on async crypto operations (high)
    + CVE-2025-23167: Improper HTTP header block termination in llhttp (medium)
  * Drop patch, applied upstream
  * Switch back to +dfsg suffix

[dgit import unpatched nodejs 20.19.2+dfsg-1]

10 months agoImport nodejs_20.19.2+dfsg-1.debian.tar.xz
Jérémy Lal [Wed, 14 May 2025 21:43:31 +0000 (23:43 +0200)]
Import nodejs_20.19.2+dfsg-1.debian.tar.xz

[dgit import tarball nodejs 20.19.2+dfsg-1 nodejs_20.19.2+dfsg-1.debian.tar.xz]

11 months agoMerge nodejs (20.19.0+dfsg1-1) import into refs/heads/workingbranch
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Merge nodejs (20.19.0+dfsg1-1) import into refs/heads/workingbranch

11 months ago[PATCH] test: update parallel/test-tls-dhe for OpenSSL 3.5
Richard Lau [Mon, 17 Mar 2025 03:42:55 +0000 (03:42 +0000)]
[PATCH] test: update parallel/test-tls-dhe for OpenSSL 3.5

The output of the `s_client` command invoked by the test has changed
in the OpenSSL 3.5.0 version of `s_client`. Update the test so that
it works with both the old and new output -- the `s_client` binary
being run may not be at the exact same version of OpenSSL as used
by Node.js so the updated test allows either output.

PR-URL: https://github.com/nodejs/node/pull/57477
Refs: https://github.com/openssl/openssl/pull/26734
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Gbp-Pq: Topic build
Gbp-Pq: Name test-update-parallel-test-tls-dhe-for-OpenSSL-3.5.patch

11 months agoskip useless files in build target
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
skip useless files in build target

Forwarded: https://github.com/nodejs/node/issues/55787

Gbp-Pq: Topic build
Gbp-Pq: Name no-deps.patch

11 months agocompile v8 without zlib static lib
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
compile v8 without zlib static lib

Last-Update: 2023-12-16
Forwarded: https://github.com/nodejs/node/issues/33848

it should have a minor performance impact

Gbp-Pq: Topic deps
Gbp-Pq: Name v8-no-static-zlib.patch

11 months agobuild using ada upstream tarball component
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
build using ada upstream tarball component

Last-Update: 2023-11-30
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name ada.patch

11 months agoHarmonize V8 stack sizes on ARM architectures to match almost all other architectures
James Addison [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Harmonize V8 stack sizes on ARM architectures to match almost all other architectures

Last-Update: 2023-02-28
Forwarded: https://github.com/nodejs/node/issues/41163

Gbp-Pq: Topic arm64
Gbp-Pq: Name stacksize.patch

11 months agoUse system paths for builtins
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Use system paths for builtins

Last-Update: 2023-02-22
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name test_process_versions.patch

11 months agofix link to home in html api
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
fix link to home in html api

Forwarded: not needed, in conflict with the meaning of home page
Last-Update: 2022-11-06

Gbp-Pq: Topic build
Gbp-Pq: Name doc_template_home.html

11 months agoallow vfp2 and allow setting arm_version option
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
allow vfp2 and allow setting arm_version option

Last-Update: 2022-08-29
Forwarded: https://github.com/nodejs/node/issues/44357

Gbp-Pq: Topic armel
Gbp-Pq: Name configure.patch

11 months agoskip buffer NaN internal representation check this fails on whatever archs having...
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
skip buffer NaN internal representation check this fails on whatever archs having other internal representations of NaN.

Last-Update: 2022-05-02
Forwarded: https://github.com/nodejs/node/issues/42945

Gbp-Pq: Topic build
Gbp-Pq: Name skip-buffer-nan-internal-check.patch

11 months agoremove google font from template.html, and link to local
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
remove google font from template.html, and link to local

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic dfsg
Gbp-Pq: Name privacy_breach.patch

11 months agoMultiarch search path, arch triplet, DFHS path for modules
Bastien ROUCARIÈS [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Multiarch search path, arch triplet, DFHS path for modules

Last-Update: 2018-09-30
Last-Update: 2020-03-04
Forwarded: https://github.com/nodejs/node/issues/22745
Reviewed-By: Xavier Guimard <yadd@debian.org>
Gbp-Pq: Topic dfsg
Gbp-Pq: Name multilib_modules.patch

11 months agoa test uses a benchmark that read alice.html, dfsg excluded
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
a test uses a benchmark that read alice.html, dfsg excluded

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2020-03-04

Gbp-Pq: Topic dfsg
Gbp-Pq: Name benchmark_without_alice.patch

11 months agouse system-installed node-gyp for building test modules
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
use system-installed node-gyp for building test modules

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic deps
Gbp-Pq: Name node_gyp.patch

11 months agodo not use dns.ADDRCONFIG for localhost
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
do not use dns.ADDRCONFIG for localhost

Last-Update: 2020-06-11
Bug-Debian: https://bugs.debian.org/962318
Forwarded: https://github.com/nodejs/node/issues/33816

it fails on IPv6-only systems. Setting it with libc fails on linux.
https://github.com/nodejs/node/issues/33279
https://lists.debian.org/debian-devel/2023/12/msg00011.html

Gbp-Pq: Topic deps
Gbp-Pq: Name localhost-no-addrconfig.patch

11 months agokeep nodejs compatible with libc-ares public headers
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
keep nodejs compatible with libc-ares public headers

Forwarded: not-needed
Last-Update: 2021-10-20

Gbp-Pq: Topic deps
Gbp-Pq: Name cares.patch

11 months agoadapt tools/test.py
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
adapt tools/test.py

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2025-02-12

* log to stdout
* increase timeout multipliers
* rename --flaky-tests to --flaky-tests-mode and use --flaky-tests like --skip-tests

Gbp-Pq: Topic build
Gbp-Pq: Name test_ci.patch

11 months agoLink to -latomic by default
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Link to -latomic by default

Last-Update: 2019-10-25
Forwarded: not-needed
Bug: https://github.com/nodejs/node/pull/28532
Bug: https://github.com/nodejs/node/issues/30093

This avoids surprises on mips*el/ppc*el

Gbp-Pq: Topic build
Gbp-Pq: Name flag_atomic.patch

11 months agobuild doc using marked and js-yaml
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
build doc using marked and js-yaml

Forwarded: not-needed
Reviewed-By: Xavier Guimard <yadd@debian.org>
Last-Update: 2021-03-03

While waiting for unified/remarked/rehyped modules to be available in debian

Gbp-Pq: Topic build
Gbp-Pq: Name doc.patch

11 months agodisable shared builtins when loading deps on demand
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
disable shared builtins when loading deps on demand

Last-Update: 2023-12-10
Forwarded: no, todo

This is to avoid preloading potentially missing files.

Gbp-Pq: Topic build
Gbp-Pq: Name builtins_module_paths_not_shareable.patch

11 months agoadd acorn, walk to shared builtins
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
add acorn, walk to shared builtins

Last-Update: 2022-09-28
Forwarded: https://github.com/nodejs/node/pull/44376

Gbp-Pq: Topic build
Gbp-Pq: Name more_shareable_builtins.patch

11 months agonodejs (20.19.0+dfsg1-1) unstable; urgency=medium
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
nodejs (20.19.0+dfsg1-1) unstable; urgency=medium

  * New repackaged upstream tarball includes deps/uv.
  * Add missing changelogs to nodejs-doc
  * Lintian: old-fsf-address-in-copyright-file
  * watch: fix ada url to actually get current version
  * copyright: document deps/uv
  * Build bundled libuv on i386 architecture to fix CVE-2025-47153.
Closes: #922075, #1076350,
[dgit import unpatched nodejs 20.19.0+dfsg1-1]

11 months agoImport nodejs_20.19.0+dfsg1.orig.tar.xz
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Import nodejs_20.19.0+dfsg1.orig.tar.xz

[dgit import orig nodejs_20.19.0+dfsg1.orig.tar.xz]

11 months agoImport nodejs_20.19.0+dfsg1.orig-ada.tar.xz
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Import nodejs_20.19.0+dfsg1.orig-ada.tar.xz

[dgit import orig nodejs_20.19.0+dfsg1.orig-ada.tar.xz]

11 months agoImport nodejs_20.19.0+dfsg1.orig-types-node.tar.xz
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Import nodejs_20.19.0+dfsg1.orig-types-node.tar.xz

[dgit import orig nodejs_20.19.0+dfsg1.orig-types-node.tar.xz]

11 months agoImport nodejs_20.19.0+dfsg1-1.debian.tar.xz
Jérémy Lal [Thu, 1 May 2025 09:09:56 +0000 (11:09 +0200)]
Import nodejs_20.19.0+dfsg1-1.debian.tar.xz

[dgit import tarball nodejs 20.19.0+dfsg1-1 nodejs_20.19.0+dfsg1-1.debian.tar.xz]

11 months agoMerge nodejs (20.19.0+dfsg-2) import into refs/heads/workingbranch
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
Merge nodejs (20.19.0+dfsg-2) import into refs/heads/workingbranch

11 months ago[PATCH] test: update parallel/test-tls-dhe for OpenSSL 3.5
Richard Lau [Mon, 17 Mar 2025 03:42:55 +0000 (03:42 +0000)]
[PATCH] test: update parallel/test-tls-dhe for OpenSSL 3.5

The output of the `s_client` command invoked by the test has changed
in the OpenSSL 3.5.0 version of `s_client`. Update the test so that
it works with both the old and new output -- the `s_client` binary
being run may not be at the exact same version of OpenSSL as used
by Node.js so the updated test allows either output.

PR-URL: https://github.com/nodejs/node/pull/57477
Refs: https://github.com/openssl/openssl/pull/26734
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Gbp-Pq: Topic build
Gbp-Pq: Name test-update-parallel-test-tls-dhe-for-OpenSSL-3.5.patch

11 months agoskip useless files in build target
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
skip useless files in build target

Forwarded: https://github.com/nodejs/node/issues/55787

Gbp-Pq: Topic build
Gbp-Pq: Name no-deps.patch

11 months agocompile v8 without zlib static lib
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
compile v8 without zlib static lib

Last-Update: 2023-12-16
Forwarded: https://github.com/nodejs/node/issues/33848

it should have a minor performance impact

Gbp-Pq: Topic deps
Gbp-Pq: Name v8-no-static-zlib.patch

11 months agobuild using ada upstream tarball component
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
build using ada upstream tarball component

Last-Update: 2023-11-30
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name ada.patch

11 months agoHarmonize V8 stack sizes on ARM architectures to match almost all other architectures
James Addison [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
Harmonize V8 stack sizes on ARM architectures to match almost all other architectures

Last-Update: 2023-02-28
Forwarded: https://github.com/nodejs/node/issues/41163

Gbp-Pq: Topic arm64
Gbp-Pq: Name stacksize.patch

11 months agoUse system paths for builtins
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
Use system paths for builtins

Last-Update: 2023-02-22
Forwarded: not-needed

Gbp-Pq: Topic build
Gbp-Pq: Name test_process_versions.patch

11 months agofix link to home in html api
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
fix link to home in html api

Forwarded: not needed, in conflict with the meaning of home page
Last-Update: 2022-11-06

Gbp-Pq: Topic build
Gbp-Pq: Name doc_template_home.html

11 months agoallow vfp2 and allow setting arm_version option
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
allow vfp2 and allow setting arm_version option

Last-Update: 2022-08-29
Forwarded: https://github.com/nodejs/node/issues/44357

Gbp-Pq: Topic armel
Gbp-Pq: Name configure.patch

11 months agoskip buffer NaN internal representation check this fails on whatever archs having...
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
skip buffer NaN internal representation check this fails on whatever archs having other internal representations of NaN.

Last-Update: 2022-05-02
Forwarded: https://github.com/nodejs/node/issues/42945

Gbp-Pq: Topic build
Gbp-Pq: Name skip-buffer-nan-internal-check.patch

11 months agoremove google font from template.html, and link to local
Jérémy Lal [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
remove google font from template.html, and link to local

Last-Update: 2015-09-09
Forwarded: not-needed

Gbp-Pq: Topic dfsg
Gbp-Pq: Name privacy_breach.patch

11 months agoMultiarch search path, arch triplet, DFHS path for modules
Bastien ROUCARIÈS [Thu, 3 Apr 2025 21:21:02 +0000 (23:21 +0200)]
Multiarch search path, arch triplet, DFHS path for modules

Last-Update: 2018-09-30
Last-Update: 2020-03-04
Forwarded: https://github.com/nodejs/node/issues/22745
Reviewed-By: Xavier Guimard <yadd@debian.org>
Gbp-Pq: Topic dfsg
Gbp-Pq: Name multilib_modules.patch